home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-29 | 1.1 KB | 43 lines | [TEXT/CWIE] |
- // DModalStuffData -- data class for Everything
-
- #pragma once
-
- #include "AMSignaler.h"
-
- #define idTools2 'Too2'
- #define idFromValuesList3 'Fro3'
- #define idFromMenu2 'Fro4'
- #define idTextList2 'Tex4'
-
- //----------
- struct DModalStuffData {
- AMSignaler super;
-
- SInt16 mTools2;
- SInt16 mFromValuesList3;
- SInt16 mFromMenu2;
- SInt16 mTextList2;
- };
- typedef struct DModalStuffData DModalStuffData;
-
- //----------
- DModalStuffData* NewDModalStuffData ();
- void DeleteDModalStuffData (DModalStuffData* data);
-
- //----------
- void DModalStuffData_Init (DModalStuffData* self);
- void DModalStuffData_Free (DModalStuffData* self);
-
- SInt16 GetTools2 (DModalStuffData* self);
- void SetTools2 (DModalStuffData* self,
- SInt16 inValue);
- SInt16 GetFromValuesList3 (DModalStuffData* self);
- void SetFromValuesList3 (DModalStuffData* self,
- SInt16 inValue);
- SInt16 GetFromMenu2 (DModalStuffData* self);
- void SetFromMenu2 (DModalStuffData* self,
- SInt16 inValue);
- SInt16 GetTextList2 (DModalStuffData* self);
- void SetTextList2 (DModalStuffData* self,
- SInt16 inValue);
-